home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #9 / Amiga Plus CD - 2004 - No. 09.iso / amigaplus / tools / amigaos4_only / ifxlite / imagefx3 / rexx / autofx / cinematte.ifx.pre < prev    next >
Text File  |  2004-08-03  |  2KB  |  51 lines

  1. /*
  2.  * CineMatte.ifx.pre
  3.  * Written by Thomas Krehbiel
  4.  *
  5.  * AutoFX script to run the CineMatte hook.
  6.  *
  7.  * Inputs:
  8.  *    Word(Arg(1),1) = Sequence number
  9.  *    Word(Arg(1),2) = Total number of frames (N)
  10.  *
  11.  * Returns:
  12.  *    0 if successful, non-zero on failure
  13.  *
  14.  */
  15.  
  16. OPTIONS RESULTS
  17.  
  18. base  = 'Autofx_CineMatte_'
  19.  
  20. colors = GETCLIP(base||'Colors')
  21. output = GETCLIP(base||'Output')
  22. drange = GETCLIP(base||'DRange')
  23. ForceBlack = GETCLIP(base||'ForceBlack')
  24. ForceWhite = GETCLIP(base||'ForceWhite')
  25.  
  26. IF colors = '' THEN colors = 0
  27. IF output = '' THEN output = 0
  28. IF drange = '' THEN drange = 0
  29. IF ForceBlack = '' THEN ForceBlack = 0
  30. IF ForceWhite = '' THEN ForceWhite = 0
  31.  
  32. Gadget.1 = 'CYCLE   130  5 170 14 "Screen Color:"' colors '"Blue/Green/Red/Cyan/Magenta/Yellow/Auto Detect/Detect Any Color"'
  33. Gadget.2 = 'CYCLE   130 20 170 14 "Output:"' output '"Matte & Keyed FG/Composite Only/Matte & Composite/Matte Only/Keyed FG Only"'
  34. Gadget.3 = 'CHECK   130 36  26 11 "Dynamic Range?"' drange
  35. Gadget.4 = 'INTEGER 130 49  50 14 "Force Black:"' ForceBlack
  36. Gadget.5 = 'INTEGER 130 64  50 14 "Force White:"' ForceWhite
  37. Gadget.6 = 'TEXT    190 52   1  1 "(0 - 255)"'
  38. Gadget.7 = 'TEXT    190 67   1  1 "(0 - 255)"'
  39. Gadget.8 = 'END'
  40.  
  41. NewComplexRequest '"CineMatte"' Gadget 330 85
  42. IF rc ~= 0 THEN EXIT rc
  43.  
  44. CALL SETCLIP(base||'Colors', result.1)
  45. CALL SETCLIP(base||'Output', result.2)
  46. CALL SETCLIP(base||'DRange', result.3)
  47. CALL SETCLIP(base||'ForceBlack', result.4)
  48. CALL SETCLIP(base||'ForceWhite', result.5)
  49.  
  50. EXIT
  51.